wok-next annotate slock/receipt @ rev 20935

Update xorg
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 24 15:29:24 2018 +0300 (2018-08-24)
parents c4e53a39395a
children d5aab818505e
rev   line source
mallory@1169 1 # SliTaz package receipt.
mallory@1169 2
mallory@1169 3 PACKAGE="slock"
erjo@14448 4 VERSION="1.1"
mallory@1169 5 CATEGORY="security"
mallory@1169 6 SHORT_DESC="Simple X display locker."
mallory@1169 7 MAINTAINER="mallory@sweetpeople.org"
pascal@15593 8 LICENSE="MIT"
mallory@1169 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@11037 10 WEB_SITE="http://tools.suckless.org/slock"
slaxemulator@11037 11 WGET_URL="http://dl.suckless.org/tools/$TARBALL"
mallory@1169 12
pascal@15593 13 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext"
al@20935 14 BUILD_DEPENDS="xorg-xorgproto xorg-libX11-dev xorg-libXext-dev"
pascal@15593 15
mallory@1169 16 # Rules to configure and make the package.
mallory@1169 17 compile_rules()
mallory@1169 18 {
mallory@1169 19 mv config.mk config.mk.original
mallory@1169 20 sed -e 's/usr\/local/usr/' < config.mk.original > config.mk
pankso@16259 21 make CC=$CC &&
slaxemulator@11037 22 make DESTDIR=$DESTDIR install
mallory@1169 23 }
mallory@1169 24
mallory@1169 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@1169 26 genpkg_rules()
mallory@1169 27 {
mallory@1169 28 mkdir -p $fs/usr
pascal@15593 29 cp -a $install/usr/bin $fs/usr
mallory@1169 30 }
mallory@1169 31