Date: Monday, March 11, 2019 @ 19:18:37 Author: bgyorgy Revision: 439846
Add ciano package Added: ciano/ ciano/trunk/ ciano/trunk/PKGBUILD ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Added: ciano/trunk/PKGBUILD =================================================================== --- ciano/trunk/PKGBUILD (rev 0) +++ ciano/trunk/PKGBUILD 2019-03-11 19:18:37 UTC (rev 439846) @@ -0,0 +1,38 @@ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=ciano +pkgver=0.2.1 +pkgrel=1 +pkgdesc="Multimedia file converter focused on simplicity" +arch=(x86_64) +url="https://robertsanseries.github.io/ciano/" +license=(GPL3) +depends=(ffmpeg granite imagemagick) +makedepends=(git meson vala) +_commit=ac33219d9474af34890635375b5d6bbaf9f15937 # tags/0.2.1 +source=("git+https://github.com/robertsanseries/ciano#commit=$_commit") +sha256sums=('SKIP') + +pkgver() { + cd ciano + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd ciano + # Use standard icon names + sed -i 's/application-add-symbolic/list-add-symbolic/' src/widgets/DialogConvertFile.vala +} + +build() { + arch-meson ciano build + ninja -C build +} + +check() { + meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +} Property changes on: ciano/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
