wok annotate xorg-xf86-input-synaptics/receipt @ rev 6488
Added parted of squashfs patch for kernel that was missing. I think its need since unlzma cause kernel oops. Its changes CONFIG_DECOMPRESS_LZMA to obj instead of a lib. I hope this didn't screw squashfs/kernel.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Sep 30 19:35:44 2010 +0000 (2010-09-30) |
parents | 2867fcbeab2e |
children | 07ae722ec64e |
rev | line source |
---|---|
pankso@3045 | 1 # SliTaz package receipt. |
pankso@3045 | 2 |
pankso@3045 | 3 PACKAGE="xorg-xf86-input-synaptics" |
gokhlayeh@5878 | 4 VERSION="1.2.99.1" |
pankso@3045 | 5 CATEGORY="x-window" |
pankso@3045 | 6 SHORT_DESC="Xorg synaptics driver." |
pankso@3045 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@3045 | 8 DEPENDS="xorg" |
gokhlayeh@5878 | 9 BUILD_DEPENDS="xorg-server-dev xorg-xproto \ |
gokhlayeh@5878 | 10 pixman-dev xorg-libpciaccess-dev xorg-randrproto \ |
gokhlayeh@5878 | 11 xorg-inputproto libxcb-dev xorg-xextproto" |
pankso@3045 | 12 SOURCE="xf86-input-synaptics" |
pankso@3045 | 13 TARBALL="$SOURCE-$VERSION.tar.gz" |
pankso@3045 | 14 WEB_SITE="http://www.x.org/" |
pankso@3045 | 15 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pankso@3045 | 16 |
pankso@3045 | 17 # Rules to configure and make the package. |
pankso@3045 | 18 compile_rules() |
pankso@3045 | 19 { |
pankso@3045 | 20 cd $src |
pankso@3045 | 21 ./configure \ |
pankso@3045 | 22 --prefix=/usr \ |
pankso@3045 | 23 --sysconfdir=/etc \ |
pankso@3045 | 24 --mandir=/usr/share/man \ |
pankso@3045 | 25 --localstatedir=/var \ |
pankso@3045 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pankso@3045 | 27 $CONFIGURE_ARGS && |
pankso@3045 | 28 make && |
pankso@3045 | 29 make DESTDIR=$PWD/_pkg install |
pankso@3045 | 30 } |
pankso@3045 | 31 |
pankso@3045 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3045 | 33 genpkg_rules() |
pankso@3045 | 34 { |
pankso@3045 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pankso@3045 | 36 cp -a $_pkg/usr/bin $fs/usr |
pankso@3045 | 37 cp -a $_pkg/usr/lib/X11/modules/input/*.so \ |
pankso@3045 | 38 $fs/usr/lib/X11/modules/input/ |
gokhlayeh@5878 | 39 mkdir -p $fs/etc/X11/xorg.conf.d |
gokhlayeh@5878 | 40 cp -a stuff/*.conf $fs/etc/X11/xorg.conf.d |
pankso@3045 | 41 } |
pankso@3045 | 42 |