mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
c2a8474d78
Conflicts: libwpd/PKGBUILD
25 lines
677 B
Bash
25 lines
677 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=create-resources
|
|
pkgver=0.1.3
|
|
pkgrel=2
|
|
pkgdesc="Shared resources for use by creative applications"
|
|
arch=("any")
|
|
makedepends=('scons')
|
|
license=('GPL')
|
|
url="http://create.freedesktop.org/"
|
|
|
|
source=("http://chakra-linux.org/sources/create-resources/create-resources-$pkgver.tar.gz")
|
|
md5sums=('ba6b6292c30029a4bbac7876544bec69')
|
|
|
|
build() {
|
|
cd $srcdir/create-resources-$pkgver
|
|
mkdir -p $pkgdir/usr
|
|
scons -Q install PREFIX=$pkgdir/usr
|
|
}
|
|
|