Building of gphone

General talk about packaging procedures and packages.
Post Reply
User avatar
zAchAry
Posts: 804
Joined: 11. May 2010, 09:02
Location: Israel

Building of gphone

Post by zAchAry »

I am unable to complete installation of gphone.

Error:

Code: Select all

   GEN        resources.c
   CC         resources.o
   LINK       gphone
make: *** No rule to make target `install'.  Stop.
build() failed.
SLKBUILD

Code: Select all

# Mandatory
pkgname=gphone
pkgver=master
pkgrel=1git
source=("$pkgname-$pkgver.zip")
# Optional
docs=("README")
url="https://github.com/ceyusa/gphone"
 
slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"GPhone is a tiny SIP client."
""
"Its purpose is to scratch a personal itch about how to"
"develop an Opal client."
""
"The code flow is based on the great OpenPhone client, from"
"Opal."
)

build() {
        cd $startdir/src/$pkgname-$pkgver

        export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:.

        make -j $numjobs || return 1
        make install DESTDIR=$startdir/pkg
}
I have all dependencies installed:

Code: Select all

Opal (v3.10)
Gtk+ (v3.0)
Vala
sqlite3
librsvg / gnome-icon-theme-symbolic
libnotify
gstreamer (v1.0)
libcanberra
sound-theme-freedesktop
Image
Help to make Slackware easier Donate to Salix
User avatar
gapan
Salix Wizard
Posts: 6241
Joined: 6. Jun 2009, 17:40

Re: Building of gphone

Post by gapan »

Well, as the error message reads, there is no install rule in the Makefile. So you can't possibly run "make install". It seems that you're going to have to need to copy files manually in the package.
Image
Image
Post Reply