From 460f8c14bcf494f6a495498b0eaa61eb57ff5fd2 Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 6 Jun 2022 17:16:11 +0200 Subject: [PATCH] build: Add looqs package --- build/looqs/build | 14 ++++++++++++++ build/looqs/debian/changelog | 5 +++++ build/looqs/debian/control | 12 ++++++++++++ build/looqs/debian/looqs.install | 4 ++++ build/looqs/debian/rules | 5 +++++ build/looqs/debian/source/format | 1 + 6 files changed, 41 insertions(+) create mode 100755 build/looqs/build create mode 100644 build/looqs/debian/changelog create mode 100644 build/looqs/debian/control create mode 100644 build/looqs/debian/looqs.install create mode 100755 build/looqs/debian/rules create mode 100644 build/looqs/debian/source/format diff --git a/build/looqs/build b/build/looqs/build new file mode 100755 index 0000000..d1b3f7b --- /dev/null +++ b/build/looqs/build @@ -0,0 +1,14 @@ +#!/bin/bash +source ../functions.bash +if [ $# -ne 1 ] ; then +echo "Usage: $0 poolpath" 1>&2 +exit 1 +fi +set -e + +TAG="v0.1rc3" +BUILDDIR=$(mktemp -d) +OUTPUT_DIR="$1" + +build_git_repo "$BUILDDIR" "https://gitea.quitesimple.org/crtxcr/looqs" looqs "$TAG" "$OUTPUT_DIR" + diff --git a/build/looqs/debian/changelog b/build/looqs/debian/changelog new file mode 100644 index 0000000..f986613 --- /dev/null +++ b/build/looqs/debian/changelog @@ -0,0 +1,5 @@ +looqs (v0.1) unstable; urgency=medium + + * Initial Release. + + -- quitesimple.org repo management department ;-) Fr 4. Feb 17:53:39 CET 2022 diff --git a/build/looqs/debian/control b/build/looqs/debian/control new file mode 100644 index 0000000..9490b7b --- /dev/null +++ b/build/looqs/debian/control @@ -0,0 +1,12 @@ +Source: looqs +Section: unknown +Priority: optional +Maintainer: quitesimple.org repo management department ;-) +Build-Depends: debhelper-compat (= 12), qtbase5-dev, libpoppler-qt5-dev, libuchardet-dev, libquazip5-dev +Standards-Version: 4.4.1 +Homepage: + +Package: looqs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: FTS desktop search with previews diff --git a/build/looqs/debian/looqs.install b/build/looqs/debian/looqs.install new file mode 100644 index 0000000..fa72e52 --- /dev/null +++ b/build/looqs/debian/looqs.install @@ -0,0 +1,4 @@ +cli/looqs /usr/bin/ +gui/looqs-gui /usr/bin/ +looqs.svg /usr/share/icons/hicolor/scalable/apps/ +looqs.desktop /usr/share/applications/ diff --git a/build/looqs/debian/rules b/build/looqs/debian/rules new file mode 100755 index 0000000..f53ba55 --- /dev/null +++ b/build/looqs/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_install: diff --git a/build/looqs/debian/source/format b/build/looqs/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/build/looqs/debian/source/format @@ -0,0 +1 @@ +3.0 (native)