mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Remove i686 compatibility from packages with dependencies incompatible with i686 * Remove armv7l compatibility from packages with dependencies incompatible with arvm7l * Abort builds/installs if the package has incompatible dependencies
58 lines
2.0 KiB
Ruby
58 lines
2.0 KiB
Ruby
require 'package'
|
|
|
|
class Oneko < Package
|
|
description 'A cat chases around your mouse cursor.'
|
|
homepage 'http://www.daidouji.com/oneko/'
|
|
version '1.2.sakura.6'
|
|
license 'public-domain'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://httpredir.debian.org/debian/pool/main/o/oneko/oneko_1.2.sakura.6.orig.tar.gz'
|
|
source_sha256 'd89cee8b81cdb40ef23b3457c9a7fe1b0ff130081b21a41ec6c41cda01391d25'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '18128ddab7d13999c43c4fa2ce24fdd15a9bcd4541a815ad8c19f9154d006db8',
|
|
armv7l: '18128ddab7d13999c43c4fa2ce24fdd15a9bcd4541a815ad8c19f9154d006db8',
|
|
x86_64: 'abcfe89e40fb13c5df22abcbae616892d9f9917ef931520a80dbbd067bb0775d'
|
|
})
|
|
|
|
depends_on 'libx11'
|
|
depends_on 'libxext'
|
|
depends_on 'sommelier'
|
|
depends_on 'imake' => :build
|
|
depends_on 'xorg_cf_files' => :build
|
|
depends_on 'gccmakedep' => :build
|
|
|
|
def self.patch
|
|
# Download extra sources
|
|
system 'curl -#LO https://httpredir.debian.org/debian/pool/main/o/oneko/oneko_1.2.sakura.6-15.debian.tar.xz'
|
|
system 'curl -#LO https://bouncer.gentoo.org/fetch/root/all/distfiles/oneko-1.2-cat.png'
|
|
system 'curl -#LO https://bouncer.gentoo.org/fetch/root/all/distfiles/oneko-1.2-dog.png'
|
|
# Verify the sources
|
|
@sha256sums = <<~EOF
|
|
8f12f3e167f100e0fcef5185f6f1faf47cb627d96c7011e580348f5f317e76b4 oneko_1.2.sakura.6-15.debian.tar.xz
|
|
994dec71c4021f4e228b8c69fcefde5b11244445ff8ff6d43b3790beecef5800 oneko-1.2-cat.png
|
|
5ca2d41b5538618196cfe9e40dd75856fde77fe35cba99ed9b2eacf1fb0e5502 oneko-1.2-dog.png
|
|
EOF
|
|
File.write('sha256sums', @sha256sums)
|
|
system 'sha256sum -c sha256sums'
|
|
# Unpack the patches
|
|
system 'tar xf oneko_1.2.sakura.6-15.debian.tar.xz'
|
|
# Patch the patches
|
|
system 'for patch in $(cat debian/patches/series); do patch -p 1 -i debian/patches/${patch}; done'
|
|
end
|
|
|
|
def self.prebuild
|
|
# Turn the Imakefile into a Makefile
|
|
system 'xmkmf -a'
|
|
end
|
|
|
|
def self.build
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|