mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#
|
|
# KDEmod, modular KDE packages for Arch Linux, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Jan Mette (funkyou) <funkyou @ kdemod.ath.cx>
|
|
# maintainer (x86_64): Martin Sandsmark (PhinnFort) <sandsmark @ kdemod.ath.cx>
|
|
# Contributor: Artyom Smirnov <smirnoffjr@gmail.com>
|
|
|
|
pkgname=repo-clean
|
|
pkgver=0.1.4
|
|
pkgrel=6
|
|
pkgdesc="Clean utility for Pacman repository"
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/repo-clean/"
|
|
license=('GPL')
|
|
depends=('pacman' 'boost')
|
|
makedepends=('cmake' 'gcc')
|
|
source=(http://chakra-project.org/source/$pkgname-$pkgver.tar.bz2
|
|
repo_clean_xz.patch
|
|
boost-1.46.1.patch)
|
|
md5sums=('a133d3cc8d740e8a2f78e958e10b117c'
|
|
'b1ca28279da1bbe35b887b2ef2ad2305'
|
|
'7f599b351851dea0eeb1a3b68ae8dd5f')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
# Patches.
|
|
patch -Np1 -i $srcdir/repo_clean_xz.patch || return 1
|
|
patch -uN ./src/repo-clean.cpp $srcdir/boost-1.46.1.patch || return 1
|
|
|
|
mkdir build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|