spkgbuild 708 B

123456789101112131415161718192021222324
  1. # description : The Markdown-based note-taking app that doesn't suck.
  2. # homepage : https://notable.app/
  3. # depends :
  4. name=notable
  5. version=1.8.4
  6. release=1
  7. noextract=""
  8. backup=""
  9. source="https://github.com/notable/notable/releases/download/v1.8.4/notable_1.8.4_amd64.deb"
  10. build() {
  11. bsdtar -xf notable_1.8.4_amd64.deb
  12. bsdtar -xf data.tar.xz
  13. find -type d -exec chmod 755 {} +
  14. mkdir -p $PKG/opt
  15. cp -r ./opt/Notable $PKG/opt
  16. install -Dm644 usr/share/applications/notable.desktop $PKG/usr/share/applications/notable.desktop
  17. chmod 755 $PKG/usr/share/applications/notable.desktop
  18. cp -r ./usr/share/icons/hicolor $PKG/usr/share/icons
  19. mkdir -p $PKG/usr/bin
  20. ln -s /opt/Notable/notable $PKG/usr/bin/notable
  21. }