mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
25 lines
850 B
Bash
25 lines
850 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Rubin Simons <rubin@xs4all.nl>
|
||
|
|
||
|
pkgname=eclipse-epic
|
||
|
pkgver=0.6.13
|
||
|
pkgrel=2
|
||
|
pkgdesc="Perl development framework for the Eclipse platform"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://e-p-i-c.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=('eclipse' 'perl')
|
||
|
source=("http://downloads.sourceforge.net/sourceforge/e-p-i-c/org.epic.updatesite_${pkgver}_20070808.zip")
|
||
|
md5sums=('8f1d7fa06c276084bba71ca4187e86f1')
|
||
|
|
||
|
build() {
|
||
|
mkdir -p $pkgdir/usr/share/eclipse
|
||
|
cd $pkgdir/usr/share/eclipse
|
||
|
mv $srcdir/org.epic.updatesite/features .
|
||
|
mv $srcdir/org.epic.updatesite/plugins .
|
||
|
find $pkgdir/usr/share/eclipse -type d -exec chmod 755 {} \;
|
||
|
find $pkgdir/usr/share/eclipse -type f -exec chmod 644 {} \;
|
||
|
chown -R root:root $pkgdir/usr/share/eclipse
|
||
|
}
|