summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco2019-04-07 13:59:50 +0200
committerFrancesco2019-04-07 13:59:50 +0200
commit3b6e392e3c4f1713a89dc8d5e4f60440dcd09808 (patch)
treecec2f7676984229948c38612f1d9ee6c8253638c
downloadaur-ufsd-pro-tools.tar.gz
Finished
-rw-r--r--.SRCINFO17
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD29
3 files changed, 50 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..da157ee1ea92
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = ufsd-pro-tools
+ pkgdesc = Paragon NTFS & HFS for Linux tools. Pro version.
+ pkgver = 9.6.7
+ pkgrel = 1
+ url = http://paragon-software.com/
+ arch = i686
+ arch = x86_64
+ license = custom
+ makedepends = linux-lts-headers
+ depends = linux-lts
+ provides = ntfsprogs
+ conflicts = ntfsprogs
+ source = file://Paragon-715-PRE_NTFS_Linux_9.6.7_Pro.tar.gz
+ md5sums = 5e836a598960bc8a8b4ddebaae3a49a5
+
+pkgname = ufsd-pro-tools
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..d100cf86d453
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+Paragon-715-PRE_NTFS_Linux_9.6.7_Pro.tar.gz
+pkg/
+src/
+*.pkg.tar.xz \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..883a026c09ea
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Francesco Allara <me@francescoallara.it>
+
+pkgname=ufsd-pro-tools
+pkgver=9.6.7
+pkgrel=1
+pkgdesc='Paragon NTFS & HFS for Linux tools. Pro version.'
+arch=('i686' 'x86_64')
+url='http://paragon-software.com/'
+license=('custom')
+depends=('linux-lts')
+makedepends=('linux-lts-headers')
+provides=('ntfsprogs')
+conflicts=('ntfsprogs')
+srcfile="file://Paragon-715-PRE_NTFS_Linux_${pkgver}_Pro.tar.gz"
+
+source=("${srcfile}")
+md5sums=('5e836a598960bc8a8b4ddebaae3a49a5')
+
+prepare() {
+ cd "${srcdir}"
+ ./configure
+ cd linutil
+ make retail_util
+}
+
+package() {
+ install -d -m755 ${pkgdir}/usr/bin
+ cp -RL ${srcdir}/linutil/objfre/bin/* ${pkgdir}/usr/bin
+} \ No newline at end of file