diff options
Diffstat (limited to 'gmid/gmid.SlackBuild')
-rw-r--r-- | gmid/gmid.SlackBuild | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/gmid/gmid.SlackBuild b/gmid/gmid.SlackBuild index 9c7169a..3c0e6ad 100644 --- a/gmid/gmid.SlackBuild +++ b/gmid/gmid.SlackBuild @@ -41,34 +41,20 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Your application will probably need different configure flags; -# these are provided as an example only. -# Be sure to build only shared libraries unless there's some need for -# static. CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ - --sysconfdir=/etc/gmid \ --mandir=/usr/man -# Compile the application and install it into the $PKG directory make make install DESTDIR=$PKG -# Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la -# Strip binaries and libraries - this can be done with 'make install-strip' -# in many source trees, and that's usually acceptable if so, but if not, -# use this: find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -# Compress man pages -# If the man pages are installed to /usr/share/man instead, you'll need to either -# add the --mandir=/usr/man flag to configure or move them manually after the -# make install process is run. find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done @@ -85,17 +71,13 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh -mkdir -p "$PKG/etc/gmid" -mkdir -p "$PKG/etc/gmid/certs" -cp -R "$CWD/files/gmid.conf.new" "$PKG/etc/gmid/" +mkdir -p "$PKG/etc" +cp -R "$CWD/files/gmid.conf.new" "$PKG/etc" mkdir -p "$PKG/etc/rc.d" cp -R "$CWD/files/rc.gmid.new" "$PKG/etc/rc.d/" mkdir -p "$PKG/srv/gmid" -mkdir -p "$PKG/var/log/gmid" -chmod u=rwX,g=rX,o= "$PKG/var/log/gmid" - cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |