wok-next annotate ucl/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 10df65db91ad |
children |
rev | line source |
---|---|
al@19759 | 1 # SliTaz package receipt v2. |
devl547@11250 | 2 |
devl547@11250 | 3 PACKAGE="ucl" |
devl547@11250 | 4 VERSION="1.03" |
devl547@11250 | 5 CATEGORY="system-tools" |
slaxemulator@11253 | 6 SHORT_DESC="Portable lossless data compression library written in ANSI C" |
devl547@11250 | 7 MAINTAINER="devl547@gmail.com" |
pascal@15363 | 8 LICENSE="GPL2" |
slaxemulator@11253 | 9 WEB_SITE="http://www.oberhumer.com/opensource/ucl/" |
al@19663 | 10 |
devl547@11250 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@11250 | 12 WGET_URL="$WEB_SITE/download/$TARBALL" |
devl547@11250 | 13 |
al@19663 | 14 BUILD_DEPENDS="gfortran" |
al@21020 | 15 SPLIT="$PACKAGE-dev" |
al@19663 | 16 |
al@20604 | 17 compile_rules() { |
al@19663 | 18 ./configure \ |
al@19663 | 19 --enable-shared \ |
al@19663 | 20 $CONFIGURE_ARGS && |
al@20604 | 21 fix libtool && |
al@21020 | 22 make && |
al@21020 | 23 make install || return 1 |
al@19759 | 24 |
al@21020 | 25 cook_pick_docs AUTHORS NEWS README THANKS TODO |
devl547@11250 | 26 } |
devl547@11250 | 27 |
al@20604 | 28 genpkg_rules() { |
al@19759 | 29 case $PACKAGE in |
al@20604 | 30 ucl) copy @std;; |
al@19759 | 31 *-dev) copy @dev;; |
al@19759 | 32 esac |
devl547@11250 | 33 } |