diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-06-20 15:40:52 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-06-20 15:40:52 +0200 |
commit | af7e0f49dd1aaeec5162d6460b87f72590c22b70 (patch) | |
tree | 3972ac5d6071caf5b4ff7398e9bfa08b8b5a58c9 /base/gpm/Pkgfile | |
parent | 0f1a50bc80f64a6b0983d32e8e0d5385c3549561 (diff) | |
download | nutyx-pakxe-af7e0f49dd1aaeec5162d6460b87f72590c22b70.tar.gz nutyx-pakxe-af7e0f49dd1aaeec5162d6460b87f72590c22b70.tar.bz2 nutyx-pakxe-af7e0f49dd1aaeec5162d6460b87f72590c22b70.tar.xz nutyx-pakxe-af7e0f49dd1aaeec5162d6460b87f72590c22b70.zip |
gpm dans base
Diffstat (limited to 'base/gpm/Pkgfile')
-rwxr-xr-x | base/gpm/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/base/gpm/Pkgfile b/base/gpm/Pkgfile new file mode 100755 index 000000000..236667e75 --- /dev/null +++ b/base/gpm/Pkgfile @@ -0,0 +1,24 @@ +# Description: Demon pour la souris pour console et X terminal. +# URL: http://unix.schottelius.org/gpm +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=gpm +version=1.20.6 +release=1 +source=(http://www.nico.schottelius.org/software/$name/archives/$name-$version.tar.bz2) +build() { + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-cxx \ + --enable-mpbsd + LDFLAGS="-lm" make + make ROOT=$PKG install + ln -sv libgpm.so.2.1.0 $PKG/usr/lib/libgpm.so.1 + ln -sv libgpm.so.2.1.0 $PKG/usr/lib/libgpm.so + cp -v conf/gpm-root.conf $PKG/etc +} |