Skip to content

Instantly share code, notes, and snippets.

@bbidulock
Created July 15, 2015 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbidulock/26b0c2702c4a4822be4f to your computer and use it in GitHub Desktop.
Save bbidulock/26b0c2702c4a4822be4f to your computer and use it in GitHub Desktop.
PKGBUILD and archlinux.patch for ion3
diff -up src/ion-3-20090110/system.mk.orig src/ion-3-20090110/system.mk
--- src/ion-3-20090110/system.mk.orig 2009-01-09 15:20:27.000000000 -0700
+++ src/ion-3-20090110/system.mk 2015-07-15 05:00:19.000000000 -0600
@@ -8,7 +8,7 @@
# Installation path prefix. Unless you know what you're doing, the default
# of /usr/local is likely the correct choice.
-PREFIX=/usr/local
+PREFIX=/usr
# Unless you are creating a package conforming to some OS's standards, you
# probably do not want to modify the following directories:
@@ -16,7 +16,7 @@ PREFIX=/usr/local
# Main binaries
BINDIR=$(PREFIX)/bin
# Configuration .lua files
-ETCDIR=$(PREFIX)/etc/ion3
+ETCDIR=/etc/ion3
# Some .lua files and ion-* shell scripts
SHAREDIR=$(PREFIX)/share/ion3
# Manual pages
@@ -62,18 +62,18 @@ DL_LIBS=-ldl
# If you have installed Lua 5.1 from the official tarball without changing
# paths, this should do it.
-LUA_DIR=/usr/local
-LUA_LIBS = -L$(LUA_DIR)/lib -llua
-LUA_INCLUDES = -I$(LUA_DIR)/include
-LUA=$(LUA_DIR)/bin/lua
-LUAC=$(LUA_DIR)/bin/luac
+LUA_DIR=/usr
+#LUA_LIBS = -L$(LUA_DIR)/lib -llua
+#LUA_INCLUDES = -I$(LUA_DIR)/include
+#LUA=$(LUA_DIR)/bin/lua
+#LUAC=$(LUA_DIR)/bin/luac
# If you are using the Debian packages, the following settings should be
# what you want.
-#LUA_LIBS=`pkg-config --libs lua5.1`
-#LUA_INCLUDES=`pkg-config --cflags lua5.1`
-#LUA=/usr/bin/lua5.1
-#LUAC=/usr/bin/luac5.1
+LUA_LIBS=`pkg-config --libs lua5.1`
+LUA_INCLUDES=`pkg-config --cflags lua5.1`
+LUA=/usr/bin/lua5.1
+LUAC=/usr/bin/luac5.1
##
@@ -127,7 +127,7 @@ DEFINES += -DCF_XFREE86_TEXTPROP_BUG_WOR
# You may uncomment this if you know that your system C libary provides
# asprintf and vasprintf. (GNU libc does.) If HAS_SYSTEM_ASPRINTF is not
# defined, an implementation provided in libtu/sprintf_2.2/ is used.
-#HAS_SYSTEM_ASPRINTF=1
+HAS_SYSTEM_ASPRINTF=1
# The following setting is needed with GNU libc for clock_gettime and the
# monotonic clock. Other systems may not need it, or may not provide a
@@ -207,7 +207,7 @@ RANLIB=ranlib
## Install & strip
##
-INSTALL=sh $(TOPDIR)/install-sh -c
+INSTALL=install
INSTALL_STRIP=-s
INSTALLDIR=mkdir -p
# Contributor: Tanguy Bouzéloc <the.zauron@gmail.com>
# Maintainer: Samantha Baldwin <fuhsaz 'plus' aur 'at' cryptic 'dot' li>
pkgname=ion3
pkgver=20090110
pkgrel=3
pkgdesc="Tiling tabbed window manager designed with keyboard users in mind"
arch=('i686' 'x86_64')
url="http://modeemi.fi/~tuomov/ion/"
license=('custom')
depends=('lua51' 'libx11' 'libxext' 'libsm' 'libice' 'libxcb' 'libxau' 'libxdmcp')
source=(http://tuomov.iki.fi/software/dl/ion-3-${pkgver}.tar.gz
ion3.desktop
archlinux.patch)
md5sums=('1f17be1e87187b4af7de047187cc4930'
'ea0c20a78da0f60463632b1149fdfeb8'
'4c9b74d0e35b91dddf6b1cd0129131ad')
prepare() {
cd ${srcdir}/ion-3-${pkgver}
patch -Np2 -b -z .orig <../archlinux.patch
if [ -n "${CFLAGS}" ] ; then
cp system.mk system.mk.new
sed -e "s:CFLAGS=-Os:CFLAGS=${CFLAGS}:" system.mk.new > system.mk
fi
}
build() {
cd ${srcdir}/ion-3-${pkgver}
make ${MAKEFLAGS}
}
package() {
cd ${srcdir}/ion-3-${pkgver}
make PREFIX=${pkgdir}/usr ETCDIR=${pkgdir}/etc/ion3 install
install -D -m644 ${startdir}/ion3.desktop ${pkgdir}/etc/X11/sessions/ion3.desktop
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment