mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
graphics/openclipart: Added to 13.0 repository
This commit is contained in:
parent
904e3dae58
commit
0551686803
4 changed files with 98 additions and 0 deletions
7
graphics/openclipart/README
Normal file
7
graphics/openclipart/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
Openclipart - Drawing Together
|
||||
|
||||
This project aims to create an archive of user contributed clip art that can
|
||||
be freely used. All graphics submitted to the project should be placed into
|
||||
the Public Domain according to the statement by the Creative Commons.
|
||||
|
||||
Note: This download is about 325 megs.
|
62
graphics/openclipart/openclipart.SlackBuild
Normal file
62
graphics/openclipart/openclipart.SlackBuild
Normal file
|
@ -0,0 +1,62 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for openclipart
|
||||
|
||||
# Written by David Somero <dsomero@hotmail.com>
|
||||
# Derived from Slackware's Slackbuilds.
|
||||
#
|
||||
# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
||||
# Copyright 2010 David Somero (dsomero@hotmail.com) Athens, TN, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
PRGNAM=openclipart
|
||||
VERSION=${VERSION:-0.19}
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
mkdir -p $PKG/usr/share/openclipart
|
||||
mv * $PKG/usr/share/openclipart
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
graphics/openclipart/openclipart.info
Normal file
10
graphics/openclipart/openclipart.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="openclipart"
|
||||
VERSION="0.19"
|
||||
HOMEPAGE="http://openclipart.org"
|
||||
DOWNLOAD="http://openclipart.org/downloads/0.19/openclipart-0.19.tar.bz2"
|
||||
MD5SUM="2ca10eadddd29982d881ee9c1cb86a4f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="David Somero"
|
||||
EMAIL="dsomero@hotmail.com"
|
||||
APPROVED="rworkman"
|
19
graphics/openclipart/slack-desc
Normal file
19
graphics/openclipart/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
openclipart: Openclipart (Freely usable clip art)
|
||||
openclipart:
|
||||
openclipart: This project aims to create an archive of user contributed clip art
|
||||
openclipart: that can be freely used. All graphics submitted to the project should
|
||||
openclipart: be placed into the Public Domain according to the statement by the
|
||||
openclipart: Creative Commons.
|
||||
openclipart:
|
||||
openclipart: Homepage: http://openclipart.org
|
||||
openclipart:
|
||||
openclipart:
|
||||
openclipart:
|
Loading…
Reference in a new issue