wok diff ossp-uuid/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 | |
children | 8740ca9c3133 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ossp-uuid/receipt Tue Apr 23 17:28:22 2019 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="ossp-uuid" 1.7 +SOURCE="uuid" 1.8 +VERSION="1.6.1" 1.9 +CATEGORY="base-system" 1.10 +SHORT_DESC="Universally Unique Identifier tools" 1.11 +MAINTAINER="pascal.bellard@slitaz.org" 1.12 +LICENSE="MIT" 1.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://www.ossp.org/pkg/lib/uuid/" 1.15 +WGET_URL="ftp://ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + ./configure --prefix=/usr \ 1.21 + --mandir=/usr/share/man \ 1.22 + $CONFIGURE_ARGS && 1.23 + make && 1.24 + make DESTDIR=$DESTDIR install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib 1.31 + cp -a $install/usr/bin $fs/usr 1.32 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.33 +}