25 lines
700 B
Bash
25 lines
700 B
Bash
# Template file for 'yad'
|
|
pkgname=yad
|
|
version=1.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-icon-browser"
|
|
hostmakedepends="automake gettext-devel glib-devel intltool pkg-config"
|
|
makedepends="gtk+3-devel"
|
|
short_desc="Yet Another Dialog"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://github.com/v1cont/yad"
|
|
distfiles="https://github.com/v1cont/yad/archive/${version}.tar.gz"
|
|
checksum=2e799ac8b37f3f6087a608c7eae9abd6ba57f3b87fe183c8d8c588100303057d
|
|
|
|
pre_configure() {
|
|
autoreconf -ivf
|
|
intltoolize
|
|
}
|
|
|
|
post_install() {
|
|
# Avoid conflict with disputils
|
|
mv "${DESTDIR}"/usr/bin/{,yad-}pfd
|
|
mv "${DESTDIR}"/usr/share/man/man1/{,yad-}pfd.1
|
|
}
|