summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2d0655ee310c9db7d1477e6da93abb8a131f244d (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
33
34
35
36
37
38
39
40
41
# Maintainer: Cihan Alkan <cihanalk@gmail.com>

pkgname=ukui-panel
pkgver=v1.1.4
pkgrel=1
pkgdesc="UKUI için panel"
url="https://ukui-desktop.org"
arch=('x86_64')
license=('GPL')
depends=()
makedepends=('intltool' 'mate-common' 'yelp-tools' 'ukui-desktop' 'ukui-menus' 'libmatekbd' 'gobject-introspection')
optdepends=()
groups=('ukui')
source=("git+https://github.com/ukui/ukui-panel.git")
sha256sums=('SKIP' 'SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | sed 's/-/+/g'
}

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

build() {
    cd ${pkgname}
    ./configure \
        --prefix=/usr \
        --libexecdir=/usr/lib/${pkgname} \
        --sysconfdir=/etc \
        --localstatedir=/var \
        --enable-introspection
    make
}

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