wok-6.x annotate nvclock/receipt @ rev 18241
Up tazusb (179)
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Tue Jul 28 10:56:38 2015 +0000 (2015-07-28) |
parents | 3765f181a6d5 |
children | 8a74e7b0ff7f |
rev | line source |
---|---|
pascal@11226 | 1 # SliTaz package receipt. |
pascal@11226 | 2 |
pascal@11226 | 3 PACKAGE="nvclock" |
pascal@11226 | 4 VERSION="0.8b4" |
pascal@11226 | 5 CATEGORY="network" |
pascal@11226 | 6 MAINTAINER="jozee@slitaz.org" |
pascal@15584 | 7 LICENSE="GPL2" |
pascal@11226 | 8 SHORT_DESC="A small utility which allows users to overclock NVIDIA based video cards" |
pascal@11226 | 9 WEB_SITE="http://www.linuxhardware.org/nvclock/" |
pascal@11226 | 10 TARBALL="$PACKAGE$VERSION.tar.gz" |
pascal@11226 | 11 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@11226 | 12 TAGS="power-management" |
pascal@15584 | 13 |
pascal@15587 | 14 BUILD_DEPENDS="autoconf automake" |
pascal@11226 | 15 |
pascal@11226 | 16 # Rules to configure and make the package. |
pascal@11226 | 17 compile_rules(){ |
pascal@11226 | 18 [ -d $PACKAGE$VERSION ] && mv $PACKAGE$VERSION $PACKAGE-$VERSION |
pascal@11226 | 19 cd $src |
gokhlayeh@11576 | 20 |
gokhlayeh@11576 | 21 autoreconf |
gokhlayeh@11576 | 22 |
pascal@11226 | 23 patch -Np1 -i $stuff/$PACKAGE-$VERSION-install.patch |
pascal@11226 | 24 ./configure --prefix=/usr --bindir=/usr/bin && |
pascal@11226 | 25 make -j 1 && |
pascal@11226 | 26 make DESTDIR=$DESTDIR install |
pascal@11226 | 27 } |
pascal@11226 | 28 |
pascal@11226 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11226 | 30 genpkg_rules() |
pascal@11226 | 31 { |
pascal@11226 | 32 mkdir -p $fs/usr/share/pixmaps |
pascal@15584 | 33 cp -a $install/usr/bin $fs/usr |
pascal@15584 | 34 cp -a $install/usr/share/icons/hicolor/48x48/apps/* $fs/usr/share/pixmaps |
pascal@11226 | 35 } |