wok-6.x annotate xorg-xrdb/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 39e9a9a762e3
children 07ae722ec64e
rev   line source
rocky@3894 1 # SliTaz package receipt.
rocky@3894 2
rocky@3894 3 PACKAGE="xorg-xrdb"
rocky@3894 4 VERSION="1.0.5"
rocky@3894 5 CATEGORY="x-window"
rocky@3894 6 SHORT_DESC="Xrdb is a program used for accessing the X resources of a server."
rocky@3894 7 MAINTAINER="rocky@slitaz.org"
rocky@3895 8 DEPENDS="xorg gcc"
rocky@3894 9 BUILD_DEPENDS="xorg-libXmu-dev"
rocky@3894 10 SOURCE="xrdb"
rocky@3894 11 TARBALL="$SOURCE-$VERSION.tar.gz"
rocky@3894 12 WEB_SITE="http://www.x.org/"
rocky@3894 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
rocky@3894 14
rocky@3894 15 # Rules to configure and make the package.
rocky@3894 16 compile_rules()
rocky@3894 17 {
rocky@3894 18 cd $src
rocky@3894 19 ./configure --prefix=/usr \
rocky@3894 20 --mandir=/usr/share/man \
rocky@3894 21 $CONFIGURE_ARGS
rocky@3894 22 make
rocky@3894 23 make DESTDIR=$PWD/_pkg install
rocky@3894 24 }
rocky@3894 25
rocky@3894 26 # Rules to gen a SliTaz package suitable for Tazpkg.
rocky@3894 27 genpkg_rules()
rocky@3894 28 {
rocky@3894 29 mkdir -p $fs/usr
rocky@3894 30 cp -a $_pkg/usr/bin $fs/usr
rocky@3894 31 }