From d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 Mon Sep 17 00:00:00 2001 From: Deposite Pirate Date: Sun, 16 Sep 2018 18:48:36 +0200 Subject: Add ports. --- .../xorg_input_joystick.SlackBuild | 90 ++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100755 xorg/xorg_input_joystick/xorg_input_joystick.SlackBuild (limited to 'xorg/xorg_input_joystick') diff --git a/xorg/xorg_input_joystick/xorg_input_joystick.SlackBuild b/xorg/xorg_input_joystick/xorg_input_joystick.SlackBuild new file mode 100755 index 0000000..1bf7e6b --- /dev/null +++ b/xorg/xorg_input_joystick/xorg_input_joystick.SlackBuild @@ -0,0 +1,90 @@ +#!/bin/sh + +CWD=`pwd` +NAME=xorg_input_joystick +VERSION=1.5.0 +ARCH=i586 +BUILD=1 +PKGNAME=xf86-input-joystick +PKGVER=$VERSION +BASEDIR=$PKGNAME-$PKGVER +ARCHIVE=$BASEDIR.tar.bz2 +REPOSITORY=http://xorg.freedesktop.org/archive/individual/driver +FLAGS="-O2 -march=pentium -mtune=pentium -fno-strength-reduce \ + -fomit-frame-pointer -ffast-math" +PKG=/tmp/package-$NAME + +rm -rf $PKG +mkdir -p $PKG + +# Obtain sources +if [ ! -e $ARCHIVE ]; then + if `wget "$REPOSITORY/$ARCHIVE"`; then + true + else + exit 1 + fi +fi + +# Compile +cd /tmp +tar jxvf $CWD/$ARCHIVE +cd $BASEDIR +CFLAGS=$FLAGS CXXFLAGS=$FLAGS ./configure \ + --build=${ARCH}-slackware-linux \ + --enable-static=no \ + --enable-shared=yes \ + --enable-debug=no \ + --prefix=/usr \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --sysconfdir=/etc \ + --localstatedir=/var +make + +# Install +make install DESTDIR=$PKG +mkdir -p $PKG/install $PKG/usr/doc/$NAME-$VERSION +cat > $PKG/install/slack-desc < /tmp/$NAME-$VERSION-$ARCH-$BUILD.txt +makepkg -l y -c n /tmp/$NAME-$VERSION-$ARCH-$BUILD.txz -- cgit v1.2.3-70-g09d2