blob: 52c440e2b651d349fe4f9e32f4eb777356ae2d24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#Maintainer: aaditya <aaditya_gnulinux@zoho.com>
pkgname=timeset-gui
pkgver=2.5
pkgrel=1
pkgdesc="A GUI for managing system date and time."
url="https://github.com/aadityabagga/timeset-gui"
arch=('any')
license=('GPL')
depends=('gksu' 'python-gobject' 'ntp')
optdepends=('ntp-openrc: openrc ntp service')
source=("https://github.com/aadityabagga/timeset-gui/archive/${pkgver}.tar.gz")
sha1sums=('f60730759bd7be3b85601762b56d05f4b5b6d017')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:
|