diff options
-rw-r--r-- | .SRCINFO | 21 | ||||
-rw-r--r-- | PKGBUILD | 37 |
2 files changed, 21 insertions, 37 deletions
@@ -1,23 +1,16 @@ pkgbase = gstfs-ng pkgdesc = A FUSE-based file system for dynamic gstreamer-based transcoding - pkgver = 1.1 - pkgrel = 5 + pkgver = 1.1.1 + pkgrel = 1 url = https://github.com/rtyle/gstfs-ng arch = x86_64 - license = LGPL3 + license = LGPL-3.0-or-later + license = LGPL-2.0-or-later + makedepends = boost depends = fuse - depends = boost depends = boost-libs depends = gstreamer - source = gstfs-ng-1.1.tar.gz::https://github.com/rtyle/gstfs-ng/archive/1.1.tar.gz - source = 0001-call-good-explicitly-on-ostream.patch - source = boost_system.patch - source = boost_placeholder.patch - source = cpp98.patch - sha256sums = 44a40290adf8ee944ad4e108dafd9ad7eeed1846221ab0562025677dea6a2559 - sha256sums = 65fe56b6f0e199ae72f60ca98559a6c93e865f72985d88a1a13f05d40551091d - sha256sums = 075f0b80dde207bc16e8b0498aef52e10ebbcbd4b76c2b3394b1bc2446ae4124 - sha256sums = 1fb4bc7d19b23348422d36a836fc8015f1b2848168506c67da5fd70c6ade2205 - sha256sums = 290a5a31597a77e0279440b0aa8ac8030d76344ef7c68091728e5dab6604aba8 + source = gstfs-ng-1.1.1.tar.gz::https://github.com/rtyle/gstfs-ng/archive/1.1.1.tar.gz + sha256sums = 413ed75b91307a6480449f627f6f4057390391a5aa05b5d69f6326b80789b017 pkgname = gstfs-ng @@ -1,30 +1,18 @@ -# Maintainer: Brett Dutro <brett.dutro@gmail.com> +# Maintainer: Brett Dutro <brett.dutro@gmail.com> +# Contributor: dreieck (https://aur.archlinux.org/account/dreieck) +# Contributor: Brett Dutro <brett.dutro@gmail.com> + pkgname=gstfs-ng -pkgver=1.1 -pkgrel=5 +pkgver=1.1.1 +pkgrel=1 pkgdesc="A FUSE-based file system for dynamic gstreamer-based transcoding" arch=('x86_64') url="https://github.com/rtyle/gstfs-ng" -license=('LGPL3') -depends=('fuse' 'boost' 'boost-libs' 'gstreamer') -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rtyle/gstfs-ng/archive/$pkgver.tar.gz" - "0001-call-good-explicitly-on-ostream.patch" - "boost_system.patch" - "boost_placeholder.patch" - "cpp98.patch") -sha256sums=('44a40290adf8ee944ad4e108dafd9ad7eeed1846221ab0562025677dea6a2559' - '65fe56b6f0e199ae72f60ca98559a6c93e865f72985d88a1a13f05d40551091d' - '075f0b80dde207bc16e8b0498aef52e10ebbcbd4b76c2b3394b1bc2446ae4124' - '1fb4bc7d19b23348422d36a836fc8015f1b2848168506c67da5fd70c6ade2205' - '290a5a31597a77e0279440b0aa8ac8030d76344ef7c68091728e5dab6604aba8') - -prepare() { - cd "$pkgname-$pkgver" - patch -p1 -i "$srcdir/0001-call-good-explicitly-on-ostream.patch" - patch -p1 -i "$srcdir/boost_system.patch" - patch -p1 -i "$srcdir/boost_placeholder.patch" - patch -p1 -i "$srcdir/cpp98.patch" -} +license=('LGPL-3.0-or-later' 'LGPL-2.0-or-later') # According to `COPYING`: "If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.". And I found no such specification. +depends=('fuse' 'boost-libs' 'gstreamer') +makedepends=('boost') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rtyle/gstfs-ng/archive/$pkgver.tar.gz") +sha256sums=('413ed75b91307a6480449f627f6f4057390391a5aa05b5d69f6326b80789b017') build() { cd "$pkgname-$pkgver" @@ -37,4 +25,7 @@ package() { install -D gstfs-ng.monitor "${pkgdir}"/usr/bin/gstfs-ng.monitor install -D gstfs-ng "${pkgdir}"/usr/bin/gstfs-ng ln -s /usr/bin/gstfs-ng "${pkgdir}"/usr/bin/mount.gstfs-ng + + install -D -t "${pkgdir}/usr/share/doc/gstfs-ng" README + install -D -t "${pkgdir}/usr/share/licenses/${pkgname}" COPYING } |