2013-12-18 03:49:00 +08:00
|
|
|
# Part of X.org group
|
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
# Contributor from Arch: Jan de Groot <jgc@archlinux.org>
|
2010-10-24 21:52:38 +08:00
|
|
|
|
2010-05-18 22:39:29 +08:00
|
|
|
pkgname=imake
|
2014-06-27 20:16:03 +08:00
|
|
|
pkgver=1.0.7
|
2011-02-26 21:24:15 +08:00
|
|
|
pkgrel=1
|
2010-05-18 22:39:29 +08:00
|
|
|
pkgdesc="X.Org imake program and related utilities"
|
2013-12-18 00:56:54 +08:00
|
|
|
arch=(x86_64)
|
2010-05-18 22:39:29 +08:00
|
|
|
url="http://xorg.freedesktop.org/"
|
|
|
|
license=('custom')
|
|
|
|
depends=(glibc)
|
2012-10-06 01:46:49 +08:00
|
|
|
makedepends=(pkg-config xproto perl)
|
2013-12-18 00:56:54 +08:00
|
|
|
optdepends=('perl: for mkhtmlindex')
|
2012-10-06 01:46:49 +08:00
|
|
|
source=("http://xorg.freedesktop.org/releases/individual/util/imake-${pkgver}.tar.bz2"
|
2014-06-27 20:16:03 +08:00
|
|
|
http://xorg.freedesktop.org/releases/individual/util/gccmakedep-1.0.3.tar.bz2
|
2012-10-06 01:46:49 +08:00
|
|
|
http://xorg.freedesktop.org/releases/individual/util/lndir-1.0.3.tar.bz2
|
2013-12-18 00:56:54 +08:00
|
|
|
http://xorg.freedesktop.org/releases/individual/util/makedepend-1.0.5.tar.bz2
|
|
|
|
http://xorg.freedesktop.org/releases/individual/util/xorg-cf-files-1.0.5.tar.bz2
|
2010-05-18 22:39:29 +08:00
|
|
|
linuxconfig.patch
|
|
|
|
LICENSE)
|
2014-06-27 20:16:03 +08:00
|
|
|
md5sums=('4042a4139a4636f78e2b8a144fdd1fcd'
|
|
|
|
'683847bee13c78a005705824a7c6f225'
|
2012-10-06 01:46:49 +08:00
|
|
|
'a47bcd6cecda1a6ebd3395926ea4f53a'
|
2013-12-18 00:56:54 +08:00
|
|
|
'0475638eb40a3920d0d3f14482c924a4'
|
|
|
|
'4a9cd7fc995ebf8f3cdad5395f9d8eba'
|
2010-05-18 22:39:29 +08:00
|
|
|
'b3385d8efbbe7c7fc50ed3a96ce37a16'
|
|
|
|
'f5767133ef7a98a0bfa15139e0e3d32e')
|
|
|
|
|
|
|
|
build() {
|
2013-12-18 00:56:54 +08:00
|
|
|
cd ${srcdir}/xorg-cf-files-1.0.5
|
2012-10-06 01:46:49 +08:00
|
|
|
patch -p1 -i "${srcdir}/linuxconfig.patch"
|
2010-05-18 22:39:29 +08:00
|
|
|
cd "${srcdir}"
|
|
|
|
for i in *; do
|
|
|
|
if [ -d "${i}" ]; then
|
|
|
|
pushd "${i}"
|
2012-10-06 01:46:49 +08:00
|
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
|
|
make
|
2010-05-18 22:39:29 +08:00
|
|
|
popd
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2012-10-06 01:46:49 +08:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}"
|
|
|
|
for i in *; do
|
|
|
|
if [ -d "${i}" ]; then
|
|
|
|
pushd "${i}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
}
|
|
|
|
|