summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a1b46337f8947a646410629dc73d386ce37023f2 (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
# Maintainer: Stezkoy <stezko@gmail.com>

pkgname=python-systemd-gui-service
pkgver=0.1.0
pkgrel=1
pkgdesc="GUI application which helps to create a GNU/Linux systemd service file"
arch=($CARCH)
license=('GPL3')
url="https://github.com/nnishant776/systemd_gui_service"
depends=('git' 'glibc' 'python' 'python-wxpython' 'python-pip')
makedepends=(
  'python-build'
  'python-installer'
  'python-setuptools'
  'python-wheel'
)
source=(${pkgname}::git+https://github.com/nnishant776/systemd_gui_service.git)
sha256sums=('SKIP')


package() {
  cd "${srcdir}"/"${pkgname}"
  python -m installer --destdir="$pkgdir" dist/*.whl
  install -D -m644 ""${srcdir}"/"${pkgname}"/data/service-creator.desktop" ""${pkgdir}"/usr/share/applications/service-creator.desktop"	
}