wok-4.x annotate slock/receipt @ rev 11935
removed extensions from desktop files
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Wed Feb 29 20:31:31 2012 -0800 (2012-02-29) |
parents | 02bbaa9d12ba |
children |
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" |
slaxemulator@11037 | 11 WEB_SITE="http://tools.suckless.org/slock" |
slaxemulator@11037 | 12 WGET_URL="http://dl.suckless.org/tools/$TARBALL" |
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 && |
slaxemulator@11037 | 21 make DESTDIR=$DESTDIR 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 |