-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d5d368
commit 78e1364
Showing
1 changed file
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,29 @@ | ||
DEFVER=1 | ||
PPA="ppa:pbek/qownnotes" | ||
DEFVER=2 | ||
ARCHS_SUPPORTED="amd64 arm64 armhf" | ||
local THE_KEY | ||
local THE_REPO | ||
case ${UPSTREAM_ID} in | ||
ubuntu) | ||
THE_KEY="https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x54223c6547878405" | ||
THE_REPO="https://ppa.launchpadcontent.net/pbek/qownnotes/ubuntu ${UPSTREAM_CODENAME} main" | ||
;; | ||
*) | ||
local DEBIANVER | ||
local THE_OPTIONS | ||
case ${UPSTREAM_CODENAME} in | ||
sid|13|trixie) DEBIANVER=Unstable ;; | ||
*) DEBIANVER=${UPSTREAM_RELEASE} ;; | ||
esac | ||
THE_KEY="http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_${DEBIANVER}/Release.key" | ||
THE_REPO="http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_${DEBIANVER}/ /" | ||
THE_OPTIONS="arch=${HOST_ARCH}" | ||
;; | ||
esac | ||
|
||
ASC_KEY_URL="${THE_KEY}" | ||
APT_REPO_URL="${THE_REPO}" | ||
APT_REPO_OPTIONS="${THE_OPTIONS}" | ||
APT_LIST_NAME=qownnotes | ||
PRETTY_NAME="qownnotes" | ||
WEBSITE="https://www.qownnotes.org" | ||
SUMMARY="Free open source plain-text file markdown note-taking with Nextcloud / ownCloud integration." |