wok-4.x annotate util-linux-ng/receipt @ rev 8543
Up: util-linux-ng to 2.19.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Feb 13 15:07:28 2011 +0000 (2011-02-13) |
parents | 00973bd72b33 |
children | 6f78cc176853 |
rev | line source |
---|---|
pankso@3104 | 1 # SliTaz package receipt. |
pankso@3104 | 2 |
pankso@3104 | 3 PACKAGE="util-linux-ng" |
slaxemulator@8543 | 4 VERSION="2.19" |
pankso@3476 | 5 CATEGORY="meta" |
pankso@3104 | 6 SHORT_DESC="Util linux new generation (Meta package to build utility ans libs)." |
pankso@3104 | 7 MAINTAINER="pankso@slitaz.org" |
slaxemulator@8543 | 8 SOURCE="util-linux" |
slaxemulator@8543 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@3104 | 10 DEPENDS="glibc-base" |
gokhlayeh@6850 | 11 BUILD_DEPENDS="slitaz-toolchain ncurses-dev zlib-dev" |
pankso@3104 | 12 WEB_SITE="http://kernel.org/~kzak/util-linux-ng/" |
slaxemulator@8543 | 13 WGET_URL="ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v${VERSION}/$TARBALL" |
pankso@3104 | 14 LOCALE="" |
pankso@3104 | 15 |
pankso@3104 | 16 # Rules to configure and make the package. |
pankso@3104 | 17 compile_rules() |
pankso@3104 | 18 { |
pankso@3104 | 19 cd $src |
slaxemulator@6520 | 20 # fix findmnt |
slaxemulator@6520 | 21 patch -p1 -i ../stuff/fix-findmnt.patch |
slaxemulator@6520 | 22 # fix cfdisk partition changing, included in next upstream release |
slaxemulator@6520 | 23 patch -p1 -i ../stuff/util-linux-ng-cfdisk.patch |
slaxemulator@6520 | 24 |
pankso@3104 | 25 if ! grep 'tty:x:4:' /etc/group; then |
pankso@3104 | 26 addgroup -g 4 tty |
pankso@3104 | 27 fi |
pascal@6113 | 28 grep -qs 'define u8' fdisk/fdisksunlabel.c || |
pascal@6113 | 29 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' fdisk/fdisksunlabel.c |
pankso@3104 | 30 ./configure \ |
pankso@3104 | 31 --prefix=/usr \ |
pankso@3104 | 32 --sysconfdir=/etc \ |
pankso@3104 | 33 --with-fsprobe=builtin \ |
pankso@3104 | 34 --enable-partx \ |
pankso@3104 | 35 $CONFIGURE_ARGS && |
pankso@3104 | 36 make && |
pankso@3104 | 37 make DESTDIR=$PWD/_pkg install |
pankso@3104 | 38 } |
pankso@3104 | 39 |
pankso@3104 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3104 | 41 genpkg_rules() |
pankso@3104 | 42 { |
pankso@3104 | 43 mkdir -p $fs/usr/bin |
pankso@3104 | 44 } |