Date: Thursday, February 11, 2021 @ 00:44:34
Author: svenstaro
Revision: 854766
archrelease: copy trunk to community-x86_64
Added:
bees/repos/community-x86_64/
bees/repos/community-x86_64/PKGBUILD
(from rev 854765, bees/trunk/PKGBUILD)
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: bees/repos/community-x86_64/PKGBUILD (from rev 854765,
bees/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-02-11 00:44:34 UTC (rev 854766)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase <[email protected]>
+# Contributor: Gavin Yancey <[email protected]>
+# Contributor: Timofey Titovets <[email protected]>
+
+pkgname=bees
+pkgver=0.6.4
+pkgrel=2
+pkgdesc="Best-Effort Extent-Same, a btrfs deduplicator daemon"
+arch=('x86_64')
+url="https://github.com/Zygo/bees"
+license=('GPL3')
+depends=('util-linux-libs' 'bash')
+makedepends=('markdown' 'btrfs-progs' 'systemd')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/Zygo/bees/archive/v${pkgver}.tar.gz")
+sha256sums=('da6c50f433a2bd6b7e26e37733de44554d8e9ed554ee9dea0d2e66d1ff820e0d')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make BEES_VERSION="${pkgver}"
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make install DESTDIR="${pkgdir}" BEES_VERSION="${pkgver}"
+
+ mv "${pkgdir}/usr/sbin" "${pkgdir}/usr/bin"
+}