wok annotate input-utils/receipt @ rev 21415
updated make (4.1 -> 4.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Apr 23 17:28:22 2019 +0100 (2019-04-23) |
parents | 408c87fa22ca |
children | af8d823a3077 |
rev | line source |
---|---|
domcox@1901 | 1 # SliTaz package receipt. |
domcox@1901 | 2 |
domcox@1901 | 3 PACKAGE="input-utils" |
Hans-G?nter@21051 | 4 VERSION="1.3" |
domcox@1901 | 5 CATEGORY="system-tools" |
Hans-G?nter@21051 | 6 TAGS="kernel input utilities" |
Hans-G?nter@21051 | 7 SHORT_DESC="Small collection of linux input layer tools." |
pascal@13025 | 8 MAINTAINER="domcox@slitaz.org" |
pascal@15001 | 9 LICENSE="GPL2" |
Hans-G?nter@21051 | 10 WEB_SITE="https://www.kraxel.org/blog/linux/input/" |
Hans-G?nter@21051 | 11 |
domcox@1901 | 12 SOURCE="input" |
domcox@1901 | 13 TARBALL="$SOURCE-$VERSION.tar.gz" |
Hans-G?nter@21051 | 14 WGET_URL="https://www.kraxel.org/releases/$SOURCE/$TARBALL" |
domcox@1901 | 15 |
pascal@15001 | 16 DEPENDS="" |
pascal@15001 | 17 |
domcox@1901 | 18 # Rules to configure and make the package. |
domcox@1901 | 19 compile_rules() |
domcox@1901 | 20 { |
Hans-G?nter@21051 | 21 patch --input $stuff/remove-target-lircd.conf.patch GNUmakefile |
Hans-G?nter@21051 | 22 |
Hans-G?nter@21051 | 23 export prefix="/usr" |
Hans-G?nter@21051 | 24 export CFLAGS="$CFLAGS -O3 -march=$ARCH" |
Hans-G?nter@21051 | 25 |
Hans-G?nter@21051 | 26 make -j 1 && |
Hans-G?nter@21051 | 27 make DESTDIR=$DESTDIR install |
domcox@1901 | 28 } |
domcox@1901 | 29 |
domcox@1901 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@1901 | 31 genpkg_rules() |
domcox@1901 | 32 { |
domcox@1901 | 33 mkdir -p $fs/usr |
pascal@13878 | 34 cp -a $install/usr/bin $fs/usr |
domcox@1901 | 35 } |