123456789101112131415161718192021222324 |
- # description : The Markdown-based note-taking app that doesn't suck.
- # homepage : https://notable.app/
- # depends :
- name=notable
- version=1.8.4
- release=1
- noextract=""
- backup=""
- source="https://github.com/notable/notable/releases/download/v1.8.4/notable_1.8.4_amd64.deb"
- build() {
- bsdtar -xf notable_1.8.4_amd64.deb
- bsdtar -xf data.tar.xz
- find -type d -exec chmod 755 {} +
- mkdir -p $PKG/opt
- cp -r ./opt/Notable $PKG/opt
- install -Dm644 usr/share/applications/notable.desktop $PKG/usr/share/applications/notable.desktop
- chmod 755 $PKG/usr/share/applications/notable.desktop
- cp -r ./usr/share/icons/hicolor $PKG/usr/share/icons
- mkdir -p $PKG/usr/bin
- ln -s /opt/Notable/notable $PKG/usr/bin/notable
- }
|