diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/cross-arm-wince-cegcc-profile/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/cross-arm-wince-cegcc-profile/PKGBUILD')
-rw-r--r-- | community/cross-arm-wince-cegcc-profile/PKGBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/community/cross-arm-wince-cegcc-profile/PKGBUILD b/community/cross-arm-wince-cegcc-profile/PKGBUILD new file mode 100644 index 000000000..02d58ef3c --- /dev/null +++ b/community/cross-arm-wince-cegcc-profile/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 20972 2010-07-13 09:53:06Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=cross-arm-wince-cegcc-profile +pkgver=0.59.1 +pkgrel=1 +_prefix=/opt/cegcc +pkgdesc="CE GCC bundle - cross compilation tools for WinCE" +arch=(i686 x86_64) +license=(GPL) +options=(!libtool) +url="http://cegcc.sf.net" +depends=('glibc') +groups=('cegcc') +source=(http://arch.pp.ru/~sergej/dl/cegcc-$pkgver.tar.bz2) +md5sums=('5e3c1098abdf8e5db2a3518ee3578b4b') + +build() { + cd ${startdir}/src/cegcc/src/profile + + export PATH=$_prefix/bin:$PATH + export TARGET=arm-wince-cegcc + unset CFLAGS + unset CXXFLAGS + unset LDFLAGS + unset MAKEFLAGS + + ./configure \ + --build=$CARCH \ + --host=arm-wince-cegcc \ + --target=arm-wince-cegcc \ + --prefix=$_prefix + + make || return 1 + + sed -i "s|prefix = $_prefix|prefix = $startdir/pkg/$_prefix|g" Makefile && \ + make install + + find $pkgdir/${_prefix} -type f -name \*.a -exec arm-wince-cegcc-ranlib {} \; +} |