wok-next view nvclock/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="nvclock"
4 VERSION="0.8b4"
5 CATEGORY="network"
6 SHORT_DESC="Small utility which allows users to overclock NVIDIA based video cards"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.linuxhardware.org/nvclock/"
11 TARBALL="$PACKAGE$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 BUILD_DEPENDS="autoconf automake libx11-dev libxext-dev"
16 compile_rules(){
17 [ -d $PACKAGE$VERSION ] && mv $PACKAGE$VERSION $PACKAGE-$VERSION
18 sed -i 's|prefix}/man|prefix}/share/man|' Makefile*
19 autoreconf
21 ./configure \
22 --prefix=/usr \
23 --bindir=/usr/bin &&
24 make -j1 &&
25 make DESTDIR=$install install
26 }
28 genpkg_rules() {
29 copy @std
30 TAGS="power-management"
31 }