wok-6.x annotate ossp-uuid/receipt @ rev 18893
Update apache post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 13 10:39:15 2016 +0100 (2016-02-13) |
parents | |
children | 8740ca9c3133 |
rev | line source |
---|---|
pascal@17531 | 1 # SliTaz package receipt. |
pascal@17531 | 2 |
pascal@17531 | 3 PACKAGE="ossp-uuid" |
pascal@17531 | 4 SOURCE="uuid" |
pascal@17531 | 5 VERSION="1.6.1" |
pascal@17531 | 6 CATEGORY="base-system" |
pascal@17531 | 7 SHORT_DESC="Universally Unique Identifier tools" |
pascal@17531 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17531 | 9 LICENSE="MIT" |
pascal@17531 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@17531 | 11 WEB_SITE="http://www.ossp.org/pkg/lib/uuid/" |
pascal@17531 | 12 WGET_URL="ftp://ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL" |
pascal@17531 | 13 |
pascal@17531 | 14 # Rules to configure and make the package. |
pascal@17531 | 15 compile_rules() |
pascal@17531 | 16 { |
pascal@17531 | 17 ./configure --prefix=/usr \ |
pascal@17531 | 18 --mandir=/usr/share/man \ |
pascal@17531 | 19 $CONFIGURE_ARGS && |
pascal@17531 | 20 make && |
pascal@17531 | 21 make DESTDIR=$DESTDIR install |
pascal@17531 | 22 } |
pascal@17531 | 23 |
pascal@17531 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17531 | 25 genpkg_rules() |
pascal@17531 | 26 { |
pascal@17531 | 27 mkdir -p $fs/usr/lib |
pascal@17531 | 28 cp -a $install/usr/bin $fs/usr |
pascal@17531 | 29 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@17531 | 30 } |