wok annotate slock/receipt @ rev 10868
gnome-mplayer: Fixed. Add /usr/share/glib-2.0 so it will work.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Jun 19 11:38:27 2011 +0000 (2011-06-19) |
parents | 4a193c62c501 |
children | dfca2060aa32 |
rev | line source |
---|---|
mallory@1169 | 1 # SliTaz package receipt. |
mallory@1169 | 2 |
mallory@1169 | 3 PACKAGE="slock" |
mallory@1169 | 4 VERSION="0.9" |
mallory@1169 | 5 CATEGORY="security" |
mallory@1169 | 6 SHORT_DESC="Simple X display locker." |
mallory@1169 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@2441 | 8 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext" |
slaxemulator@8964 | 9 BUILD_DEPENDS="xorg-xproto xorg-xextproto" |
mallory@1169 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@1169 | 11 WEB_SITE="http://www.suckless.org/programs/slock.html" |
mallory@1169 | 12 WGET_URL="http://code.suckless.org/dl/tools/slock-0.9.tar.gz" |
mallory@1169 | 13 |
mallory@1169 | 14 # Rules to configure and make the package. |
mallory@1169 | 15 compile_rules() |
mallory@1169 | 16 { |
mallory@1169 | 17 cd $src |
mallory@1169 | 18 mv config.mk config.mk.original |
mallory@1169 | 19 sed -e 's/usr\/local/usr/' < config.mk.original > config.mk |
pascal@1514 | 20 make && |
mallory@1169 | 21 make DESTDIR=$PWD/_pkg install |
mallory@1169 | 22 } |
mallory@1169 | 23 |
mallory@1169 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@1169 | 25 genpkg_rules() |
mallory@1169 | 26 { |
mallory@1169 | 27 mkdir -p $fs/usr |
mallory@1169 | 28 cp -a $_pkg/usr/bin $fs/usr |
mallory@1169 | 29 } |
mallory@1169 | 30 |