summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0c1802c65447cfd137cf122637c9df30db2c5588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Contributor: Cihan Alkan <cihanalk@gmail.com>

pkgname=parchives
pkgver=1.18.2
pkgrel=1
pkgdesc="UKUI için pencere Yöneticisi"
url="http://www.ukui.org/"
arch=('x86_64')
license=('GPL')
depends=(gtk3 dconf libarchive file json-glib libnotify zip unzip)
groups=('ukui')
source=("git+https://github.com/liupengluiz/parchives.git")
sha256sums=('SKIP' 'SKIP')

prepare() {
 cd ${pkgname}
    NOCONFIGURE=1 ./autogen.sh
}

build() {
    cd ${pkgname}
    ./autogen.sh
    ./configure \
    --prefix=/usr --sysconfdir=/etc --localstatedir=/var \

    make
}

package() {
    cd ${pkgname}
    make DESTDIR="${pkgdir}" install
}