New Package: Netsurf (#4261)

This commit is contained in:
ThatGeekyWeeb
2020-08-30 23:25:20 -04:00
committed by GitHub
parent 0f249381b3
commit 371c835aa0
11 changed files with 231 additions and 0 deletions

19
packages/libnsgif.rb Normal file
View File

@@ -0,0 +1,19 @@
require 'package'
class Libnsgif < Package
description 'Decoding library for the GIF image file format, written in C'
homepage 'https://www.netsurf-browser.org'
version '0.2.1'
compatibility 'all'
source_url 'https://download.netsurf-browser.org/libs/releases/libnsgif-0.2.1-src.tar.gz'
source_sha256 '9eaea534cd70b53c5aaf45317ae957701685a6b4a88dbe34ed26f4faae879a4b'
depends_on 'netsurf_buildsystem'
def self.build
system "make -j#{CREW_NPROC} PREFIX=#{CREW_PREFIX}"
end
def self.install
system "make -j#{CREW_NPROC} install PREFIX=#{CREW_PREFIX}"
end
end