core/repo-clean/PKGBUILD
2013-10-01 19:49:57 +00:00

27 lines
625 B
Bash

# Core Packages for Chakra, part of chakra-project.org
pkgname=repo-clean-xz
pkgver=0.1.4
pkgrel=1
pkgdesc="Clean utility for Pacman repository (with xz patch)"
arch=(x86_64)
url=https://github.com/luolimao/$pkgname
license=(GPL3)
depends=(boost)
makedepends=(scons)
provides=("repo-clean=${pkgver}")
conflicts=("repo-clean")
replaces=("repo-clean")
source=(https://github.com/downloads/luolimao/$pkgname/$pkgname-$pkgver.tar.bz2)
sha256sums=('79824dd29ad7bc92a5a17513d0b66684ce9a9b74a5ce4d4927fc3b0c0d008ed3')
build() {
cd $pkgname-$pkgver/
scons
}
package() {
cp -rf $pkgname-$pkgver/dist/ "$pkgdir"/usr/
}