diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:38:20 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:38:20 (GMT) |
commit | 75a974500de1bb4b0bb84b726a9d7075d07e18b7 (patch) | |
tree | 9a0c45226e4b04a8595fbacfcde115d444f5c5d5 /abs/core-testing/imake/PKGBUILD | |
parent | 14beb839185f027cba412b6aa0941296a843818b (diff) | |
download | linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.zip linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.tar.gz linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.tar.bz2 |
Removing more cross repo makedepends.
Moved the following packages from extra->core.
nasm
automake
autoconf
sharutils
imake
gperf/
yasm/
setuptools/
libcaca/
libdca/
live-media/
There are still several cross repo make depends, but some packages just dont' belong in core.
For instance avahi and ca-certificates(core) depend on mono and ruby(extra). But really mono and ruby do not belong in core.
Diffstat (limited to 'abs/core-testing/imake/PKGBUILD')
-rw-r--r-- | abs/core-testing/imake/PKGBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/abs/core-testing/imake/PKGBUILD b/abs/core-testing/imake/PKGBUILD new file mode 100644 index 0000000..ba2dc4c --- /dev/null +++ b/abs/core-testing/imake/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Alexander Baldeck <alexander@archlinux.org> +# Contributor: Jan de Groot <jgc@archlinux.org> +pkgname=imake +pkgver=1.0.2 +pkgrel=3 +force=y +pkgdesc="X.Org imake program and related utilities" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +depends=(glibc) +makedepends=(pkgconfig xproto perl) +source=(http://xorg.freedesktop.org/releases/individual/util/imake-1.0.2.tar.bz2 + http://xorg.freedesktop.org/releases/individual/util/gccmakedep-1.0.2.tar.bz2 + http://xorg.freedesktop.org/releases/individual/util/lndir-1.0.1.tar.bz2 + http://xorg.freedesktop.org/releases/individual/util/makedepend-1.0.1.tar.bz2 + http://xorg.freedesktop.org/releases/individual/util/xorg-cf-files-1.0.2.tar.bz2 + linuxconfig.patch) + +build() { + cd ${startdir}/src/xorg-cf-files-* + patch -Np1 -i ${startdir}/src/linuxconfig.patch || return 1 + cd ${startdir}/src + for i in *; do + if [ -d "${i}" ]; then + pushd "${i}" + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 + popd + fi + done +} +md5sums=('02fea5a02ba2857c7d81820c8e8b8e6f' + 'b533c0771dbbaf9b041ff35bb941d3a2' + 'e274ea9f55dfd62afa0a7b1e1ab4ba96' + '54ab2549d723e51ff2b9cff4d8bf44d1' + '5f62dd5545b782c74f6e4e70d0e6552c' + '1b1d7653ac95d4b479784afcd61a889f') |