wok-next diff libseccomp/receipt @ rev 20796

Add descriptions to the GNOME games
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 10 16:17:43 2018 +0300 (2018-06-10)
parents
children f48456621a9d
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libseccomp/receipt	Sun Jun 10 16:17:43 2018 +0300
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="libseccomp"
     1.7 +VERSION="2.3.3"
     1.8 +CATEGORY="libs"
     1.9 +SHORT_DESC="Interface to the Linux kernel's syscall filtering mechanism"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="LGPL2.1"
    1.12 +WEB_SITE="https://github.com/seccomp/libseccomp/"
    1.13 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/libseccomp.html"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 +WGET_URL="https://github.com/seccomp/libseccomp/releases/download/v$VERSION/$TARBALL"
    1.17 +
    1.18 +SPLIT="libseccomp-dev"
    1.19 +
    1.20 +compile_rules() {
    1.21 +	./configure \
    1.22 +		--disable-static \
    1.23 +		$CONFIGURE_ARGS &&
    1.24 +	fix libtool &&
    1.25 +	make &&
    1.26 +	make install
    1.27 +}
    1.28 +
    1.29 +genpkg_rules() {
    1.30 +	case $PACKAGE in
    1.31 +		libseccomp) copy @std;;
    1.32 +		*-dev)      copy @dev;;
    1.33 +	esac
    1.34 +}