You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
827 B
Bash
33 lines
827 B
Bash
3 years ago
|
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
||
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
||
|
|
||
|
pkgname=tde-libart-lgpl
|
||
|
pkgver=14.0.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Trinity Desktop LGPL'd Component"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://scm.trinitydesktop.org/scm/git/libart-lgpl"
|
||
|
license=('LGPL')
|
||
|
groups=('tde-core')
|
||
|
depends=('tde-tqtinterface')
|
||
|
makedepends=()
|
||
|
optdepends=()
|
||
|
provides=('libart-lgpl')
|
||
|
conflicts=()
|
||
|
replaces=()
|
||
|
options=('staticlibs' 'libtool' '!strip')
|
||
|
install=
|
||
|
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/dependencies/libart-lgpl-R${pkgver}.tar.bz2")
|
||
|
md5sums=('89ee9f3901fdd8622b24e789638818e6')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/dependencies/${pkgname#*-}
|
||
|
./configure --prefix=${TDEDIR}
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/dependencies/${pkgname#*-}
|
||
|
make -j1 DESTDIR=$pkgdir install
|
||
|
}
|