diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:28:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:28:43 +0000 |
commit | d55a05cc4a531fbc028d0e079d77e32809b761e8 (patch) | |
tree | a10373297d56e2873e4d6d7b13da7d45b027cfe5 /debian/rules | |
parent | Adding upstream version 6.3.0. (diff) | |
download | geekbench-arm64-d55a05cc4a531fbc028d0e079d77e32809b761e8.tar.xz geekbench-arm64-d55a05cc4a531fbc028d0e079d77e32809b761e8.zip |
Adding progress-linux version 6.3.0-0progress7.99u1.HEADprogress-linux/6.3.0-0progress7.99u1progress-linux
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/rules | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ecbc9f7 --- /dev/null +++ b/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/architecture.mk + +%: + dh ${@} + +execute_after_dh_auto_clean: + rm -rf build + +override_dh_auto_build: + mkdir -p build + tar -C build -xf *.tar.gz + +override_dh_auto_install: + mkdir -p debian/geekbench/usr/lib + cp -a build/Geekbench* debian/geekbench/usr/lib/geekbench + + mkdir -p debian/geekbench/usr + cp -a debian/local/bin debian/geekbench/usr/bin + +override_dh_dwz: + # disabled + +override_dh_strip: + # disabled + +override_dh_strip_nondeterminism: + # disabled |