wok view libsigsegv/receipt @ rev 22115

updated volumeicon (0.4.6 -> 0.5.1)
author Hans-G?nter Theisgen
date Sat Nov 02 16:43:33 2019 +0100 (2019-11-02)
parents 77a6f66653ab
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigsegv"
4 VERSION="2.12"
5 CATEGORY="development"
6 SHORT_DESC="Library for handling page faults in user mode."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/libsigsegv/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib $fs/usr
34 cp -a $install/usr/include $fs/usr
35 }