Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PKGBUILD for ArchLinux #6

Open
JollyDevelopment opened this issue Oct 14, 2021 · 1 comment
Open

PKGBUILD for ArchLinux #6

JollyDevelopment opened this issue Oct 14, 2021 · 1 comment

Comments

@JollyDevelopment
Copy link

o/

I saw this as a post on the /r/PINE64official subreddit. I made a quick PKGBUILD if you want it. Not published to the AUR or anything, I just built it on my ArchLinuxArm VM.

This makes a package that installs on the ArchLinux img for PinePhone (https://github.com/dreemurrs-embedded/Pine64-Arch)

PKGBUILD

Feel free to use it if you want.

@JollyDevelopment
Copy link
Author

Update: actually it didn't run, but I had some missing dependencies.

Had to install https://aur.archlinux.org/packages/httpx/, and https://aur.archlinux.org/packages/youtube-search-python/ and https://aur.archlinux.org/packages/python-mpv/

That plus the updated depends=() got all the packages needed it seems. I can now open the app on my pinephone.

# Maintainer: Jolly Roberts [email protected]
pkgname="python-linmotube"
_pkgname="linmotube"
pkgver="1.2"
pkgrel="1"
pkgdesc="LinMoTube"
arch=('aarch64' 'x86_64')
url="https://github.com/jakeday/LinMoTube"
license=('MIT')
depends=('youtube-search-python' 'python-mpv' 'python-opengl' 'python-cairo' 'python-requests' 'python-gobject' 'gtk3' 'git')
makedepends=('python-setuptools')
source=("${_pkgname}::git+https://github.com/jakeday/LinMoTube.git")
md5sums=('SKIP')
build(){
  cd $_pkgname
  python setup.py build
}
package(){
  cd $_pkgname
  python setup.py install --root="$pkgdir" --optimize=1
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant