mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:38:28 +08:00
24 lines
493 B
Bash
24 lines
493 B
Bash
# Maintainer: AlmAck
|
|
|
|
pkgname=repo-clean-xz
|
|
pkgver=0.1.4
|
|
pkgrel=3
|
|
pkgdesc="Clean utility for Pacman repository (with xz patch)"
|
|
arch=('x86_64')
|
|
url=https://github.com/luolimao/$pkgname
|
|
license=(GPL3)
|
|
depends=('boost' 'pacman>=4.2')
|
|
makedepends=('scons')
|
|
source=(https://github.com/downloads/luolimao/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b9d7ddfe83ef1c6e19786d6d428ade6e')
|
|
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver/
|
|
scons
|
|
}
|
|
|
|
package() {
|
|
cp -rf $pkgname-$pkgver/dist/ "$pkgdir"/usr/
|
|
}
|