summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c8b551c3a571d65e762bd3b06751cf7db872d541 (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-menus
pkgver=v1.1.2+3+g8e73198
pkgrel=1
pkgdesc="UKUI menü özellikleri"
url="https://ukui-desktop.org"
arch=('x86_64')
license=('GPL')
depends=()
makedepends=('intltool' 'python')
groups=('ukui')
source=("git+https://github.com/ukui/ukui-menus.git")
sha256sums=('SKIP')

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

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

build() {
    cd ${pkgname}
    PYTHON=/usr/bin/python3 
        ./configure \
        --prefix=/usr \
        --sysconfdir=/etc \
        --localstatedir=/var \
        --enable-python

    make
}

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