Pkgfile 812 B

1234567891011121314151617181920212223
  1. # Description: The Markdown-based note-taking app that doesn't suck.
  2. # URL: https://notable.app/
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on:
  5. name=notable
  6. version=1.8.4
  7. release=2
  8. source=(https://github.com/notable/$name/releases/download/v$version/notable_1.8.4_amd64.deb)
  9. build() {
  10. bsdtar -xf notable_1.8.4_amd64.deb
  11. bsdtar -xf data.tar.xz
  12. find -type d -exec chmod 755 {} +
  13. mkdir -p $PKG/opt
  14. cp -r ./opt/Notable $PKG/opt
  15. install -Dm644 usr/share/applications/notable.desktop $PKG/usr/share/applications/notable.desktop
  16. chmod 755 $PKG/usr/share/applications/notable.desktop
  17. cp -r ./usr/share/icons/hicolor $PKG/usr/share/icons
  18. mkdir -p $PKG/usr/bin
  19. ln -s /opt/Notable/notable $PKG/usr/bin/notable
  20. }