wok-current view sipsak/receipt @ rev 25761
Fix opencl-amdgpu-pro-icd path
| author | Stanislas Leduc <shann@slitaz.org> | 
|---|---|
| date | Tue Apr 01 06:27:26 2025 +0000 (7 months ago) | 
| parents | 5ea0ce1cecc0 | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="sipsak"
     4 VERSION="0.9.8.1"
     5 CATEGORY="network"
     6 SHORT_DESC="SIP swiss army knife."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 WEB_SITE="https://github.com/nils-ohlmeier/sipsak/"
    11 TARBALL="$PACKAGE-$VERSION.tar.gz"
    12 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
    14 DEPENDS="gnutls libcrypto zlib"
    15 BUILD_DEPENDS="autoconf libcrypto libcrypto-dev libtool"
    17 current_version()
    18 {
    19 	wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
    20 	sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
    21 }
    23 # Rules to configure and make the package.
    24 compile_rules()
    25 {
    26 	autoreconf --install &&
    27 	./configure				\
    28 		--prefix=/usr			\
    29 		--infodir=/usr/share/info	\
    30 		--mandir=/usr/share/man		\
    31 		$CONFIGURE_ARGS &&
    32 	make &&
    33 	make install DESTDIR=$DESTDIR
    34 }
    36 # Rules to gen a SliTaz package suitable for Tazpkg.
    37 genpkg_rules()
    38 {
    39 	cook_copy_folders	bin
    40 }