wok annotate xplanet/receipt @ rev 25494
Add finch & btop (thanks ceel)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 30 08:50:05 2022 +0000 (23 months ago) |
parents | 7dd01dedad38 |
children | 29df00e1e19d |
rev | line source |
---|---|
pascal@3804 | 1 # SliTaz package receipt. |
pascal@3804 | 2 |
pascal@3804 | 3 PACKAGE="xplanet" |
pascal@24109 | 4 VERSION="1.3.0" |
pascal@3804 | 5 CATEGORY="system-tools" |
pascal@3804 | 6 SHORT_DESC="Render major planets into the X root window." |
pascal@3804 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
pascal@3804 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@25460 | 10 WEB_SITE="https://xplanet.sourceforge.net/" |
pascal@3804 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@15000 | 12 |
pascal@3804 | 13 DEPENDS="perl jpeg libpng zlib tiff xorg-libX11 freetype pango fontconfig \ |
pascal@5008 | 14 glib xorg-libXau xorg-libXdmcp expat giflib xorg-libXss gcc-lib-base \ |
pankso@12481 | 15 util-linux-uuid" |
pascal@3804 | 16 BUILD_DEPENDS="giflib-dev jpeg-dev libpng-dev zlib-dev tiff-dev \ |
pascal@3804 | 17 xorg-libX11-dev freetype-dev pango-dev fontconfig-dev glib-dev \ |
pascal@3804 | 18 xorg-libXau-dev xorg-libXdmcp-dev" |
pascal@3804 | 19 |
pascal@25461 | 20 # What is the latest version available today? |
pascal@24108 | 21 current_version() |
pascal@24108 | 22 { |
pascal@24108 | 23 wget -O - https://sourceforge.net/projects/$PACKAGE/files/ 2>/dev/null | \ |
pascal@24108 | 24 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ |
pascal@24108 | 25 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|;q" |
pascal@24108 | 26 } |
pascal@24108 | 27 |
pascal@3804 | 28 # Rules to configure and make the package. |
pascal@3804 | 29 compile_rules() |
pascal@3804 | 30 { |
pascal@24109 | 31 patch -p1 < $stuff/xplanet-giflib5.patch |
pascal@3804 | 32 ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@3804 | 33 make && |
slaxemulator@11128 | 34 make -j1 DESTDIR=$DESTDIR install |
pascal@3804 | 35 } |
pascal@3804 | 36 |
pascal@3804 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3804 | 38 genpkg_rules() |
pascal@3804 | 39 { |
pascal@3804 | 40 mkdir -p $fs/usr/share |
pascal@15000 | 41 cp -a $install/usr/share/xplanet $fs/usr/share |
pascal@15000 | 42 cp -a $install/usr/bin $fs/usr |
psychomaniak@18352 | 43 } |