wok-next view xar/receipt @ rev 20453

Undo openssl split
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 28 16:28:07 2018 +0200 (2018-02-28)
parents 9278a60d6895
children d329acd936d3
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xar"
4 VERSION="1.5.2"
5 CATEGORY="utilities"
6 SHORT_DESC="eXtensible ARchiver"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://code.google.com/archive/p/xar/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/xar/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev openssl-dev zlib-dev bzip2-dev"
15 SPLIT="xar-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 case $PACKAGE in
27 xar)
28 copy @std
29 DEPENDS="acl attr bzlib glibc-base openssl libxml2 zlib"
30 ;;
31 *-dev) copy @dev;;
32 esac
33 }