nvclock: new port

This commit is contained in:
Danny Rawlins 2007-12-05 20:57:49 +11:00
parent cb6bfc853a
commit cae1187e01
3 changed files with 39 additions and 0 deletions

7
nvclock/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/nvclock
-rwxr-xr-x root/root usr/bin/nvclock_gtk
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/nvclock.1.gz

1
nvclock/.md5sum Normal file
View File

@ -0,0 +1 @@
b7b932c196c8de3a5cab1a7db9bdddff nvclock-snapshot-20071205.tar.lzma

31
nvclock/Pkgfile Normal file
View File

@ -0,0 +1,31 @@
# Description: Small utility that allows users to overclock NVIDIA based video cards.
# URL: http://www.linuxhardware.org/nvclock/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Nathan Pardoe, lithium at poolofrandomness dot com
# Depends on: gtk lzma xorg-libxext xorg-libx11
name=nvclock
version=20071205
release=1
source=(http://romster.shortcircuit.net.au/crux/source/nvclock-snapshot-$version.tar.lzma)
#source=(http://www.linuxhardware.org/nvclock/nvclock$version.tar.gz)
build() {
# temp fix untill/if pkgutils supports lzma
if [ -e $SRC/$name-snapshot-$version.tar.lzma ]; then
tar --use-compress-program=lzma -xf $name-snapshot-$version.tar.lzma
rm $name-snapshot-$version.tar.lzma
fi
cd nvclock
./configure \
--prefix=/usr \
--disable-qt \
--with-x
make -j1
make prefix=$PKG/usr install
rm -r $PKG/usr/share
}