mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
29 lines
710 B
Bash
29 lines
710 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=cross-arm-wince-cegcc-cegccdll-dummy
|
|
pkgver=0.55
|
|
pkgrel=1
|
|
pkgdesc="CE GCC bundle - cross compilation tools for WinCE"
|
|
arch=(i686 x86_64)
|
|
license=(GPL)
|
|
options=(!libtool)
|
|
url="http://cegcc.sf.net"
|
|
depends=('glibc')
|
|
source=(http://arch.pp.ru/~sergej/dl/cegcc-$pkgver.tar.bz2)
|
|
md5sums=('a781929486db5b6154a0f82a825895e9')
|
|
|
|
_prefix=/opt/cegcc
|
|
|
|
build() {
|
|
cd ${startdir}/src/cegcc-$pkgver/src/
|
|
|
|
export PATH=$_prefix/bin:$PATH
|
|
|
|
cd cegcc/fakecegccdll && \
|
|
./install.sh $startdir/pkg/$_prefix || return 1
|
|
|
|
find $startdir/pkg/ -name '*.a' | while read F; do
|
|
arm-wince-cegcc-ranlib $F
|
|
done
|
|
}
|