wok view libsigsegv/receipt @ rev 17213

Up pgadmin (1.18.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 10 16:34:25 2014 +0200 (2014-10-10)
parents b35689fc665a
children 77a6f66653ab
line source
1 # SliTaz package receipt.
3 PACKAGE="libsigsegv"
4 VERSION="2.9"
5 CATEGORY="development"
6 SHORT_DESC="Library for handling page faults in user mode."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/libsigsegv/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib $fs/usr
32 cp -a $install/usr/include $fs/usr
33 }