wok view libaal/receipt @ rev 22457

freedoom: update 0.7 -> 0.8
author Erkan Yilmaz <erkan@slitaz.org>
date Thu Dec 26 11:35:56 2019 +0000 (2019-12-26)
parents 86790a278e70
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libaal"
4 VERSION="1.0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="Application abstraction library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://www.kernel.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/reiser4/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }