summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 99f0db1c9c8f1f2e75ac9e66613495c1ad3e77b3 (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
# Mantainer: Pellegrino Prevete <cGVsbGVncmlub3ByZXZldGVAZ21haWwuY29tCg== | base -d>
# Contributor: kleintux <reg-archlinux@klein.tuxli.ch>

pkgname=system-config-users
pkgver=1.3.8
pkgrel=3
pkgdesc='A graphical interface for administering users and groups'
arch=('x86_64' 'i686' 'pentium4')
url='https://than.fedorapeople.org/system-config-users'
license=('GPL')
depends=('libselinux-python2'
         'libuser'
         'pygtk'
         'python2'
         'python2-rpm'
         'rpm-tools'
         'selinux-python2'
         'xdg-utils')
makedepends=('intltool'
             'git')
source=('system-config-users::git+https://gitlab.com/tallero/system-config-users.git#commit=dabb1f8b')
sha256sums=('SKIP')

build() {
  cd "${pkgname}"
  make
}

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

# vim: ts=2 sw=2 et: